home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / queries / pgetlayeroptions.h < prev    next >
C/C++ Source or Header  |  1996-08-16  |  742b  |  38 lines

  1. /*
  2.  *--- PGetLayerOptions.h -----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sat, Oct 21, 1995 @ 8:58 AM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetLayerOptions__
  10. #define __PGetLayerOptions__
  11.  
  12. #include "PHandleQuery.h"
  13.  
  14. class PGetLayerOptions : public PHandleQuery
  15. {
  16.  
  17. public:
  18.  
  19.     PGetLayerOptions(const char * sLayerName);
  20.  
  21.     short            nShow;
  22.     short            nLock;
  23.     short            nColorIndex;
  24.     long            lRed;
  25.     long            lGreen;
  26.     long            lBlue;
  27.  
  28.  
  29. private:
  30.     virtual void InitReply();
  31.     
  32.     PGetLayerOptions();
  33. };
  34.  
  35. #endif
  36.  
  37. // end of PGetLayerOptions.h
  38.